home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 01542_Script_1542 < prev    next >
Text File  |  1995-05-21  |  689b  |  36 lines

  1. on mouseDown
  2.   global whichShot, shotTemp
  3.   if whichShot > 2 then 
  4.     exit
  5.   else
  6.     put the movieTime of sprite 48 into shotTemp
  7.     puppetsound "camclick.aif"
  8.     
  9.     --put "SnapBtn" into f
  10.     --put "SnapBtnHL" into fHL
  11.     --hiliter 7, f, fHL
  12.   end if
  13. end
  14.  
  15.  
  16.  
  17. on mouseUp
  18.   global gTheDay, snap1, snap2, whichShot, shotTemp
  19.   if whichShot > 2 then 
  20.     exit
  21.   else
  22.     if whichShot = 1 then
  23.       put shotTemp into snap1
  24.       set whichShot = 2
  25.       go frame "Ro1"
  26.     else
  27.       put shotTemp into snap2
  28.       set whichShot = 3
  29.       go frame "Ro2"
  30.     end if
  31.   end if
  32.   startTimer
  33.     repeat while the timer < 10
  34.     end repeat
  35.   puppetsound 0
  36. end